home *** CD-ROM | disk | FTP | other *** search
/ Eagles Nest BBS 1 / Eagles_Nest_Mac_Collection_Disc_1.TOAST / Special Hardware / TimeDrive / TimeDrive.rsrc / TEXT_129.txt < prev    next >
Text File  |  1991-12-11  |  2KB  |  34 lines

  1.  
  2.     This program creates a temporary contiguous scratch file.
  3.     It then executes single large block reads and writes,
  4.     measuring the time and converting to Kilobytes per Second.
  5.     Seeks are restricted to a single volume (partition) on a
  6.     drive.  A volume that is smaller than the total drive will
  7.     yield noticeably smaller seek times than the drive specification.
  8.        (This is another advantage of partitioning hard drives.)
  9.  
  10.     NOTE: Total time for a disk transfer is:
  11.             T = Seek Time + Latency + Data size/transfer speed
  12.  
  13.           Latency is the time for data to rotate under the heads.
  14.             (On average, this is 1/2 the disk revolution time).
  15.           Average seek times are measured by reading 200 random
  16.             locations within the selected volume.
  17.           Maximum seek times are measured by reading the first
  18.             and last location within the selected volume.
  19.           Data Transfer Speed measures how fast data is transferred
  20.             between your drive and the Mac once the drive gets there.
  21.             (transfer times vary depending on the drive/Mac combination)
  22.           Simulated System measures how fast a sequence of randomly
  23.             selected, yet typical, disk transfers take.  The transfers
  24.             invlove a small number of single block requests (system 
  25.             resources) folowed by a number of 1-32 block requests 
  26.             (application requests).  The number reported, the "effective
  27.             transfer rate," is lower than read/write rates since seek
  28.             and latency times are included in the calculation.
  29.  
  30.     BONUS: The data read during Read Transfer rate measurements
  31.             is checked against the known random data written.  This
  32.             thoroughly tests the reliability of storing and retrieving data
  33.             on the selected volume.
  34.